home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 108 / MacAddict108.iso / Software / Internet & Communication / WordPress 1.5.1.dmg / wordpress / wp-admin / options-reading.php < prev    next >
Encoding:
PHP Script  |  2005-02-11  |  2.9 KB  |  63 lines

  1. <?php
  2. require_once('admin.php');
  3.  
  4. $title = __('Reading Options');
  5. $parent_file = 'options-general.php';
  6.  
  7. include('admin-header.php');
  8. ?>
  9.  
  10. <div class="wrap"> 
  11. <h2><?php _e('Reading Options') ?></h2> 
  12. <form name="form1" method="post" action="options.php"> 
  13.     <input type="hidden" name="action" value="update" /> 
  14.     <input type="hidden" name="page_options" value="'posts_per_page','what_to_show','posts_per_rss','rss_use_excerpt','blog_charset','gzipcompression' " /> 
  15.     <fieldset class="options"> 
  16.     <legend><?php _e('Blog Pages') ?></legend> 
  17.     <table width="100%" cellspacing="2" cellpadding="5" class="editform"> 
  18.         <tr valign="top"> 
  19.         <th width="33%" scope="row"><?php _e('Show at most:') ?></th> 
  20.         <td>
  21.         <input name="posts_per_page" type="text" id="posts_per_page" value="<?php form_option('posts_per_page'); ?>" size="3" /> 
  22.         <select name="what_to_show" id="what_to_show" > 
  23.             <option value="days" <?php selected('days', get_settings('what_to_show')); ?>><?php _e('days') ?></option> 
  24.             <option value="posts" <?php selected('posts', get_settings('what_to_show')); ?>><?php _e('posts') ?></option> 
  25.         </select>
  26.         </td> 
  27.         </tr> 
  28.     </table> 
  29.     </fieldset> 
  30.  
  31.     <fieldset class="options"> 
  32.     <legend><?php _e('Syndication Feeds') ?></legend> 
  33.     <table width="100%" cellspacing="2" cellpadding="5" class="editform"> 
  34.         <tr valign="top"> 
  35.         <th width="33%" scope="row"><?php _e('Show the most recent:') ?></th> 
  36.         <td><input name="posts_per_rss" type="text" id="posts_per_rss" value="<?php form_option('posts_per_rss'); ?>" size="3" /> <?php _e('posts') ?></td> 
  37.         </tr>
  38.         <tr valign="top">
  39.         <th scope="row"><?php _e('For each article, show:') ?> </th>
  40.         <td>
  41.         <label><input name="rss_use_excerpt"  type="radio" value="0" <?php checked(0, get_settings('rss_use_excerpt')); ?>  /> <?php _e('Full text') ?></label><br />
  42.         <label><input name="rss_use_excerpt" type="radio" value="1" <?php checked(1, get_settings('rss_use_excerpt')); ?> /> <?php _e('Summary') ?></label>
  43.         </td>
  44.         </tr> 
  45.     </table> 
  46.     </fieldset> 
  47.     <table width="100%" cellspacing="2" cellpadding="5" class="editform"> 
  48.         <tr valign="top"> 
  49.         <th width="33%" scope="row"><?php _e('Encoding for pages and feeds:') ?></th> 
  50.         <td><input name="blog_charset" type="text" id="blog_charset" value="<?php form_option('blog_charset'); ?>" size="20" class="code" /><br />
  51.         <?php _e('The character encoding you write your blog in (UTF-8 is <a href="http://developer.apple.com/documentation/macos8/TextIntlSvcs/TextEncodingConversionManager/TEC1.5/TEC.b0.html">recommended</a>)') ?></td> 
  52.         </tr>
  53.     </table> 
  54.     <p>
  55.         <label><input type="checkbox" name="gzipcompression" value="1" <?php checked('1', get_settings('gzipcompression')); ?> /> 
  56.          <?php _e('WordPress should compress articles (gzip) if browsers ask for them') ?></label>
  57.     </p>
  58.     <p class="submit"> 
  59.         <input type="submit" name="Submit" value="<?php _e('Update Options') ?> »" /> 
  60.     </p> 
  61. </form> 
  62. </div> 
  63. <?php include('./admin-footer.php'); ?>